Re: [GENERAL] :) Import file2table Question

Поиск
Список
Период
Сортировка
От Herouth Maoz
Тема Re: [GENERAL] :) Import file2table Question
Дата
Msg-id l03110701b1c685f4988a@[147.233.159.109]
обсуждение исходный текст
Список pgsql-sql
(Redirected to the SQL list)

At 12:31 +0300 on 6/7/98, Korapat Charukumnerdkanok wrote:


> 2    -What table field type that suits for 6-digit decimal number..
>      (i.e. 0.000000, 0.250001 , 0.123456 , ....)?
>
>      I've defined this column with float4 and float8
>      but when I inserted data it returned this error message..
>
>
> ProjDB=> insert into PrjTB values (0.000000,'red','Ln1')
> ProjDB->;
> ERROR:  pg_atoi: error in "0.000000": can't parse ".000000"

Must be something wrong with your installation - or your table definition.
In my case:

testing=> create table test ( col1 float8 );
CREATE
testing=> insert into test values ( 0.3 );
INSERT 758126 1
testing=> insert into test values ( 0.000003 );
INSERT 758127 1
testing=> insert into test values ( 0 );
INSERT 758128 1
testing=> insert into test values ( 0.0 );
INSERT 758129 1
testing=> insert into test values ( 0.000000 );
INSERT 758130 1
testing=> select * from test;
 col1
-----
  0.3
3e-06
    0
    0
    0
(5 rows)

Herouth

--
Herouth Maoz, Internet developer.
Open University of Israel - Telem project
http://telem.openu.ac.il/~herutma



В списке pgsql-sql по дате отправления:

Предыдущее
От: Herouth Maoz
Дата:
Сообщение: Re: [SQL] Primary keys: can they be alphanumerical?
Следующее
От: BD Postgres
Дата:
Сообщение: Re: [SQL] sql date functions